home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / bcb.dci < prev    next >
Encoding:
INI File  |  1998-02-09  |  1.2 KB  |  122 lines

  1. [switchs | switch statement]
  2. switch (|)
  3. {
  4.   case : ;
  5.   break;
  6.   case : ;
  7.   break;
  8. }
  9.  
  10. [switche | switch statement (with default)]
  11. switch (|)
  12. {
  13.   case : ;
  14.   break;
  15.   case : ;
  16.   break;
  17.   default: ;
  18. }
  19.  
  20. [classf | class declaration (all parts)]
  21. class T| : public T
  22. {
  23. private:
  24.  
  25. protected:
  26.  
  27. public:
  28.  
  29. __published:
  30.  
  31. };
  32.  
  33. [classd | class declaration (no parts)]
  34. class T| : public T
  35. {
  36. };
  37.  
  38. [classc | class declaration (with constructor/destructor)]
  39. class T| : public T
  40. {
  41. private:
  42.  
  43. protected:
  44.  
  45. public:
  46.   __fastcall T();
  47.   __fastcall ~T();
  48. __published:
  49.  
  50. };
  51.  
  52. [struct | structure declaration]
  53. struct |
  54. {
  55. };
  56.  
  57. [templ | template class declaration]
  58. template <class T>
  59. class |
  60. {
  61. };
  62.  
  63. [fors | for (no opening/closing braces)]
  64. for (|; ;)
  65.  
  66. [forb | for statement]
  67. for (|; ;)
  68. {
  69.  
  70. }
  71.  
  72. [function | function declaration]
  73. |()
  74. {
  75.  
  76. }
  77.  
  78. [ifs | if (no opening/closing braces)]
  79. if (|)
  80.  
  81. [ifb | if statement]
  82. if (|)
  83. {
  84.  
  85. }
  86.  
  87. [ife | if (no opening/closing braces) else (no opening/closing braces)]
  88. if (|)
  89.  
  90. else
  91.  
  92. [ifeb | if else]
  93. if (|)
  94. {
  95.  
  96. }
  97. else
  98. {
  99.  
  100. }
  101.  
  102.  
  103. [trye | try catch]
  104. try
  105. {
  106.   |
  107. }
  108. catch()
  109. {
  110. }
  111.  
  112. [whileb | while statement]
  113. while (|)
  114. {
  115.  
  116. }
  117.  
  118. [whiles | while (no opening/closing braces)]
  119. while (|)
  120.  
  121.  
  122.